-
Notifications
You must be signed in to change notification settings - Fork 318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nrf_rpc: Add function for single group initialization #1593
base: main
Are you sure you want to change the base?
Conversation
a943a29
to
cd4ad91
Compare
1351882
to
7a4cfd2
Compare
6d9476d
to
326b004
Compare
return 0; | ||
} | ||
|
||
int nrf_rpc_init(nrf_rpc_err_handler_t err_handler) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The err_handler
is never assigned to global handler.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, I changed that.
nrf_rpc/nrf_rpc.c
Outdated
static void default_err_handler(const struct nrf_rpc_err_report *report) | ||
{ | ||
NRF_RPC_ERR("nRF RPC error %d ocurred. See nRF RPC logs for more details", report->code); | ||
k_oops(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be OS-independent code. k_oops() is a Zephyr function. Please pass it through OS porting layer.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Regarding this, do you refer to this OS porting layer do you refer to the nrf_rpc one?
So what you are proposing is to add another function here:
https://github.com/nrfconnect/sdk-nrf/blob/main/subsys/nrf_rpc/nrf_rpc_os.c
Which handles the error case?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you have an opinion on this Pawel? I can do what I am describing here if you have the same understanding as me
326b004
to
fa5ea93
Compare
reviewer is away. nitpicks were addressed
nrf_rpc/nrf_rpc.c
Outdated
|
||
NRF_RPC_ASSERT(transport != NULL); | ||
if(group->data->transport_initialized) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
space missing
s/if(/if (
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
for (NRF_RPC_AUTO_ARR_FOR(iter, group, &nrf_rpc_groups_array, | ||
const struct nrf_rpc_group)) { | ||
|
||
transport_init_single(receive_cb, group); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
error is not checked
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is intentional though, because I saw in the previous implementation they didn't return an error when a single initialization failed.
The logic here:
Line 420 in 4929937
for (NRF_RPC_AUTO_ARR_FOR(iter, group, &nrf_rpc_groups_array, |
Should be the same with the logic in the function transport_init_single basically.
The error that I return in this function is the logic which exists here:
Line 458 in 4929937
if (waiting_group_count > 0) { |
nrf_rpc/nrf_rpc.c
Outdated
@@ -1144,20 +1162,67 @@ int nrf_rpc_init(nrf_rpc_err_handler_t err_handler) | |||
return err; | |||
} | |||
|
|||
for (i = 0; i < CONFIG_NRF_RPC_CMD_CTX_POOL_SIZE; i++) { | |||
for (int i = 0; i < CONFIG_NRF_RPC_CMD_CTX_POOL_SIZE; i++) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/int/size_t
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
nrf_rpc/nrf_rpc.c
Outdated
int nrf_rpc_init_group(const struct nrf_rpc_group *group) | ||
{ | ||
int err = nrf_rpc_prepare_init(); | ||
if(err < 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing space if (
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
nrf_rpc/nrf_rpc.c
Outdated
NRF_RPC_DBG("Initializing nRF RPC module"); | ||
|
||
err = nrf_rpc_prepare_init(); | ||
if(err < 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
I assume that @doki-nordic have seen no problems with the actual change. |
Hi @Vge0rge , please just fix the error handling and I will approve and merge. |
fefd809
to
d078aad
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM assuming the k_oops
abstraction is handled in follow-up work
d078aad
to
2873f50
Compare
a6ab60d
to
905cc1a
Compare
905cc1a
to
d727227
Compare
d192102
to
279e37c
Compare
cb90371
to
fc46274
Compare
7605dd9
to
a8ea4c0
Compare
nrf_rpc/nrf_rpc.c
Outdated
} | ||
|
||
NRF_RPC_ASSERT(group_count > 0); | ||
if (initialized_group_count == group_count - 1) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't you use waiting_group_count
? If there are groups without NRF_RPC_FLAGS_WAIT_ON_INIT
flag, the wait below will hang indefinitely. By the way, it's non-obvious that the function waits only if there's only one group that has not been initialized so far, so this should be documented or there should be a follow up filed to make the group initialization less coupled (so that each group can only wait for its own initialization completion).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What I was trying to do here to here is to call the event_wait function only for the last group which was getting initialized. The function groups_init_event_wait
checks for waiting threads so it will actually not hang. But on the other hand now that I look at it again there is a bug in this indeed. The initialized_group_count
only increases for the threads which have the NRF_RPC_FLAGS_WAIT_ON_INIT
flag enabled, so if there is one thread that doesn't then the wait will never get called. I will have to refactor this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, so another issue is that if you have two groups and you execute nrf_rpc_init_group
for both of them without a delay, you may end up in a situation that neither call will enter this if
(because init
packet for the first group may not arrive before you execute the second nrf_rpc_init_group
). So my concern is that if the goal of this function is to make sure that all groups are initialized after you call this function for the last group, you may be surprised in some scenarios :).
|
||
int nrf_rpc_init_group(const struct nrf_rpc_group *group) | ||
{ | ||
int err = nrf_rpc_prepare_init(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that this code is not thread-safe. Is there an assumption that nrf_rpc_init_group
must be called from the main thread only? If so, I think we should document it. Otherwise, nrf_rpc_prepare_init
may end up being executed from two threads.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right that this is not thread safe, but is it not the case that the whole nrf_pc is not thread safe? The variable is_initialized
was static before, I didn't change that. I am not too familiar with the library but it I see many static objects being manipulated so I thought that it is not thread safe. Am I missing something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Calling nRF RPC commands is thread-safe as far as I understand but the init is not. @doki-nordic has more background but my impression is that the authors originally assumed that that the init would be called once. If we now allow more flexibility it becomes harder to enforce this, especially if this is not documented.
Converted to draft until I finish the refactoring to signal that this should get merged as is. |
Adds the function nrf_rpc_init_group to allow initializing an nrf_rpc group individually. This is useful when groups need to be initialized in different boot stages. nrf_rpc_init now takes into account that a group could could be initialized using the nrf_rpc_init_group and avoids initializiting again. Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
Adds the function nrf_rpc_init_group to allow initializing an nrf_rpc group individually. This is useful when groups need to be initialized in different boot stages.
nrf_rpc_init now takes into account that a group could could be initialized using the nrf_rpc_init_group and avoids initializiting again.